home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacFormat 1994 October
/
Macformat17.cdr
/
Shareware City
/
Developers
/
GAL ƒ
/
GAL examples
/
nested subs w local vbl
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1994-07-11
|
245 b
|
19 lines
|
[
TEXT/ttxt
]
; subroutines don't do much but do show nesting ability
begin_code
jump:sub first
halt
first
jump:sub second
return
end_code
begin_data
local constant 5,15
end_data
begin_code
second
jump:sub third
return
third
return
end_code
end